.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #181c27; /* Dark background for tooltip */
    color: #232a35; /* Yellow text */
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px; /* Half of width */
    opacity: 0;
    transition: opacity 0.3s;
    background-color: #becae9;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #becae9 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Updated Creator Styles */
.creator {
    display: flex;
    align-items: center;
    background-color: #181c27;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    position: relative; /* For positioning tooltip */
}

.creator .creator-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.creator .creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator .creator-info {
    flex: 1;
}

.creator .creator-info h3 {
    margin-bottom: 5px;
    color:#becae9;
}

.creator .creator-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgb(202, 212, 221);
}

.creator .social-links {
    text-align: left;
    margin-top: 10px;
}

.creator .social-links a {
    display: inline-block;
    margin-right: 10px;
}

.creator .social-links img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* General Layout */
#creators-section {
    padding: 20px;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
    .creator {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .creator .creator-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}